home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / util / gnu / emacs_src_18_58.lha / emacs-18.58 / info / emacs-13 (.txt) < prev    next >
GNU Info File  |  1992-02-21  |  32KB  |  638 lines

  1. This is Info file ../info/emacs, produced by Makeinfo-1.43 from the
  2. input file emacs.tex.
  3.    This file documents the GNU Emacs editor.
  4.    Copyright (C) 1985, 1986, 1988 Richard M. Stallman.
  5.    Permission is granted to make and distribute verbatim copies of
  6. this manual provided the copyright notice and this permission notice
  7. are preserved on all copies.
  8.    Permission is granted to copy and distribute modified versions of
  9. this manual under the conditions for verbatim copying, provided also
  10. that the sections entitled "The GNU Manifesto", "Distribution" and "GNU
  11. General Public License" are included exactly as in the original, and
  12. provided that the entire resulting derived work is distributed under
  13. the terms of a permission notice identical to this one.
  14.    Permission is granted to copy and distribute translations of this
  15. manual into another language, under the above conditions for modified
  16. versions, except that the sections entitled "The GNU Manifesto",
  17. "Distribution" and "GNU General Public License" may be included in a
  18. translation approved by the author instead of in the original English.
  19. File: emacs,  Node: Glossary,  Next: Key Index,  Prev: Intro,  Up: Top
  20. Glossary
  21. ********
  22. Abbrev
  23.      An abbrev is a text string which expands into a different text
  24.      string when present in the buffer.  For example, you might define
  25.      a short word as an abbrev for a long phrase that you want to
  26.      insert frequently.  *Note Abbrevs::.
  27. Aborting
  28.      Aborting means getting out of a recursive edit (q.v.).  The
  29.      commands `C-]' and `M-x top-level' are used for this.  *Note
  30.      Quitting::.
  31. Auto Fill mode
  32.      Auto Fill mode is a minor mode in which text that you insert is
  33.      automatically broken into lines of fixed width.  *Note Filling::.
  34. Auto Saving
  35.      Auto saving is when Emacs automatically stores the contents of an
  36.      Emacs buffer in a specially-named file so that the information
  37.      will not be lost if the buffer is lost due to a system error or
  38.      user error.  *Note Auto Save::.
  39. Backup File
  40.      A backup file records the contents that a file had before the
  41.      current editing session.  Emacs makes backup files automatically
  42.      to help you track down or cancel changes you later regret making.
  43.       *Note Backup::.
  44. Balance Parentheses
  45.      Emacs can balance parentheses manually or automatically.  Manual
  46.      balancing is done by the commands to move over balanced
  47.      expressions (*note Lists::.).  Automatic balancing is done by
  48.      blinking the parenthesis that matches one just inserted (*note
  49.      Matching Parens: Matching.).
  50.      To bind a key is to change its binding (q.v.).  *Note Rebinding::.
  51. Binding
  52.      A key gets its meaning in Emacs by having a binding which is a
  53.      command (q.v.), a Lisp function that is run when the key is typed. 
  54.      *Note Binding: Commands.  Customization often involves rebinding a
  55.      character to a different command function.  The bindings of all
  56.      keys are recorded in the keymaps (q.v.).  *Note Keymaps::.
  57. Blank Lines
  58.      Blank lines are lines that contain only whitespace.  Emacs has
  59.      several commands for operating on the blank lines in the buffer.
  60. Buffer
  61.      The buffer is the basic editing unit; one buffer corresponds to
  62.      one piece of text being edited.  You can have several buffers,
  63.      but at any time you are editing only one, the `selected' buffer,
  64.      though several can be visible when you are using multiple
  65.      windows.  *Note Buffers::.
  66. Buffer Selection History
  67.      Emacs keeps a buffer selection history which records how recently
  68.      each Emacs buffer has been selected.  This is used for choosing a
  69.      buffer to select.  *Note Buffers::.
  70.      `C' in the name of a character is an abbreviation for Control. 
  71.      *Note C-: Characters.
  72.      `C-M-' in the name of a character is an abbreviation for
  73.      Control-Meta.  *Note C-M-: Characters.
  74. Case Conversion
  75.      Case conversion means changing text from upper case to lower case
  76.      or vice versa.  *Note Case::, for the commands for case
  77.      conversion.
  78. Characters
  79.      Characters form the contents of an Emacs buffer; also, Emacs
  80.      commands are invoked by keys (q.v.), which are sequences of one
  81.      or more characters.  *Note Characters::.
  82. Command
  83.      A command is a Lisp function specially defined to be able to
  84.      serve as a key binding in Emacs.  When you type a key (q.v.), its
  85.      binding (q.v.) is looked up in the relevant keymaps (q.v.) to
  86.      find the command to run.  *Note Commands::.
  87. Command Name
  88.      A command name is the name of a Lisp symbol which is a command
  89.      (*note Commands::.).  You can invoke any command by its name using
  90.      `M-x' (*note M-x::.).
  91. Comments
  92.      A comment is text in a program which is intended only for humans
  93.      reading the program, and is marked specially so that it will be
  94.      ignored when the program is loaded or compiled.  Emacs offers
  95.      special commands for creating, aligning and killing comments. 
  96.      *Note Comments::.
  97. Compilation
  98.      Compilation is the process of creating an executable program from
  99.      source code.  Emacs has commands for compiling files of Emacs Lisp
  100.      code (*note Lisp Libraries::.) and programs in C and other
  101.      languages (*note Compilation::.).
  102. Complete Key
  103.      A complete key is a character or sequence of characters which,
  104.      when typed by the user, fully specifies one action to be
  105.      performed by Emacs.  For example, `X' and `Control-f' and
  106.      `Control-x m' are keys.  Keys derive their meanings from being
  107.      bound (q.v.) to commands (q.v.).  Thus, `X' is conventionally
  108.      bound to a command to insert `X' in the buffer; `C-x m' is
  109.      conventionally bound to a command to begin composing a mail
  110.      message. *Note Keys::.
  111. Completion
  112.      Completion is what Emacs does when it automatically fills out an
  113.      abbreviation for a name into the entire name.  Completion is done
  114.      for minibuffer (q.v.) arguments when the set of possible valid
  115.      inputs is known; for example, on command names, buffer names, and
  116.      file names.  Completion occurs when TAB, SPC or RET is typed. 
  117.      *Note Completion::.
  118. Continuation Line
  119.      When a line of text is longer than the width of the screen, it
  120.      takes up more than one screen line when displayed.  We say that
  121.      the text line is continued, and all screen lines used for it
  122.      after the first are called continuation lines.  *Note
  123.      Continuation: Basic.
  124. Control-Character
  125.      ASCII characters with octal codes 0 through 037, and also code
  126.      0177, do not have graphic images assigned to them.  These are the
  127.      control characters.  Any control character can be typed by
  128.      holding down the CTRL key and typing some other character; some
  129.      have special keys on the keyboard.  RET, TAB, ESC, LFD and DEL
  130.      are all control characters.  *Note Characters::.
  131. Copyleft
  132.      A copyleft is a notice giving the public legal permission to
  133.      redistribute a program or other work of art.  Copylefts are used
  134.      by leftists to enrich the public just as copyrights are used by
  135.      rightists to gain power over the public.
  136. Current Buffer
  137.      The current buffer in Emacs is the Emacs buffer on which most
  138.      editing commands operate.  You can select any Emacs buffer as the
  139.      current one.  *Note Buffers::.
  140. Current Line
  141.      The line point is on (*note Point::.).
  142. Current Paragraph
  143.      The paragraph that point is in.  If point is between paragraphs,
  144.      the current paragraph is the one that follows point.  *Note
  145.      Paragraphs::.
  146. Current Defun
  147.      The defun (q.v.) that point is in.  If point is between defuns,
  148.      the current defun is the one that follows point.  *Note Defuns::.
  149. Cursor
  150.      The cursor is the rectangle on the screen which indicates the
  151.      position called point (q.v.) at which insertion and deletion
  152.      takes place.  The cursor is on or under the character that
  153.      follows point.  Often people speak of `the cursor' when, strictly
  154.      speaking, they mean `point'.  *Note Cursor: Basic.
  155. Customization
  156.      Customization is making minor changes in the way Emacs works.  It
  157.      is often done by setting variables (*note Variables::.) or by
  158.      rebinding keys (*note Keymaps::.).
  159. Default Argument
  160.      The default for an argument is the value that will be assumed if
  161.      you do not specify one.  When the minibuffer is used to read an
  162.      argument, the default argument is used if you just type RET. 
  163.      *Note Minibuffer::.
  164. Default Directory
  165.      When you specify a file name that does not start with `/' or `~',
  166.      it is interpreted relative to the current buffer's default
  167.      directory.  *Note Default Directory: Minibuffer File.
  168. Defun
  169.      A defun is a list at the top level of parenthesis or bracket
  170.      structure in a program.  It is so named because most such lists
  171.      in Lisp programs are calls to the Lisp function `defun'.  *Note
  172.      Defuns::.
  173.      DEL is a character that runs the command to delete one character
  174.      of text.  *Note DEL: Basic.
  175. Deletion
  176.      Deletion means erasing text without saving it.  Emacs deletes text
  177.      only when it is expected not to be worth saving (all whitespace,
  178.      or only one character).  The alternative is killing (q.v.). 
  179.      *Note Deletion: Killing.
  180. Deletion of Files
  181.      Deleting a file means erasing it from the file system.  *Note
  182.      Misc File Ops::.
  183. Deletion of Messages
  184.      Deleting a message means flagging it to be eliminated from your
  185.      mail file.  This can be undone by undeletion until the mail file
  186.      is expunged.  *Note Rmail Deletion::.
  187. Deletion of Windows
  188.      Deleting a window means eliminating it from the screen.  Other
  189.      windows expand to use up the space.  The deleted window can never
  190.      come back, but no actual text is thereby lost.  *Note Windows::.
  191. Directory
  192.      Files in the Unix file system are grouped into file directories. 
  193.      *Note Directories: ListDir.
  194. Dired
  195.      Dired is the Emacs facility that displays the contents of a file
  196.      directory and allows you to "edit the directory", performing
  197.      operations on the files in the directory.  *Note Dired::.
  198. Disabled Command
  199.      A disabled command is one that you may not run without special
  200.      confirmation.  The usual reason for disabling a command is that
  201.      it is confusing for beginning users.  *Note Disabling::.
  202. Dribble File
  203.      A file into which Emacs writes all the characters that the user
  204.      types on the keyboard.  Dribble files are used to make a record
  205.      for debugging Emacs bugs.  Emacs does not make a dribble file
  206.      unless you tell it to.  *Note Bugs::.
  207. Echo Area
  208.      The echo area is the bottom line of the screen, used for echoing
  209.      the arguments to commands, for asking questions, and printing
  210.      brief messages (including error messages).  *Note Echo Area::.
  211. Echoing
  212.      Echoing is acknowledging the receipt of commands by displaying
  213.      them (in the echo area).  Emacs never echoes single-character
  214.      keys; longer keys echo only if you pause while typing them.
  215. Error
  216.      An error occurs when an Emacs command cannot execute in the
  217.      current circumstances.  When an error occurs, execution of the
  218.      command stops (unless the command has been programmed to do
  219.      otherwise) and Emacs reports the error by printing an error
  220.      message (q.v.).  Type-ahead is discarded.  Then Emacs is ready to
  221.      read another editing command.
  222. Error Messages
  223.      Error messages are single lines of output printed by Emacs when
  224.      the user asks for something impossible to do (such as, killing
  225.      text forward when point is at the end of the buffer).  They
  226.      appear in the echo area, accompanied by a beep.
  227.      ESC is a character, used to end incremental searches and as a
  228.      prefix for typing Meta characters on keyboards lacking a META
  229.      key.  Unlike the META key (which, like the SHIFT key, is held
  230.      down while another character is typed), the ESC key is pressed
  231.      once and applies to the next character typed.
  232. Fill Prefix
  233.      The fill prefix is a string that should be expected at the
  234.      beginning of each line when filling is done.  It is not regarded
  235.      as part of the text to be filled.  *Note Filling::.
  236. Filling
  237.      Filling text means moving text from line to line so that all the
  238.      lines are approximately the same length.  *Note Filling::.
  239. Global
  240.      Global means `independent of the current environment; in effect
  241.      throughout Emacs'.  It is the opposite of local (q.v.). 
  242.      Particular examples of the use of `global' appear below.
  243. Global Abbrev
  244.      A global definition of an abbrev (q.v.) is effective in all major
  245.      modes that do not have local (q.v.) definitions for the same
  246.      abbrev.  *Note Abbrevs::.
  247. Global Keymap
  248.      The global keymap (q.v.) contains key bindings that are in effect
  249.      except when overridden by local key bindings in a major mode's
  250.      local keymap (q.v.).  *Note Keymaps::.
  251. Global Substitution
  252.      Global substitution means replacing each occurrence of one string
  253.      by another string through a large amount of text.  *Note
  254.      Replace::.
  255. Global Variable
  256.      The global value of a variable (q.v.) takes effect in all buffers
  257.      that do not have their own local (q.v.) values for the variable. 
  258.      *Note Variables::.
  259. Graphic Character
  260.      Graphic characters are those assigned pictorial images rather than
  261.      just names.  All the non-Meta (q.v.) characters except for the
  262.      Control (q.v.) characters are graphic characters.  These include
  263.      letters, digits, punctuation, and spaces; they do not include RET
  264.      or ESC.  In Emacs, typing a graphic character inserts that
  265.      character (in ordinary editing modes).  *Note Basic Editing:
  266.      Basic.
  267. Grinding
  268.      Grinding means adjusting the indentation in a program to fit the
  269.      nesting structure.  *Note Grinding: Indentation.
  270. Hardcopy
  271.      Hardcopy means printed output.  Emacs has commands for making
  272.      printed listings of text in Emacs buffers.  *Note Hardcopy::.
  273.      You can type HELP at any time to ask what options you have, or to
  274.      ask what any command does.  HELP is really `Control-h'.  *Note
  275.      Help::.
  276. Inbox
  277.      An inbox is a file in which mail is delivered by the operating
  278.      system.  Rmail transfers mail from inboxes to mail files (q.v.)
  279.      in which the mail is then stored permanently or until explicitly
  280.      deleted.  *Note Rmail Inbox::.
  281. Indentation
  282.      Indentation means blank space at the beginning of a line.  Most
  283.      programming languages have conventions for using indentation to
  284.      illuminate the structure of the program, and Emacs has special
  285.      features to help you set up the correct indentation.  *Note
  286.      Indentation::.
  287. Insertion
  288.      Insertion means copying text into the buffer, either from the
  289.      keyboard or from some other place in Emacs.
  290. Justification
  291.      Justification means adding extra spaces to lines of text to make
  292.      them come exactly to a specified width.  *Note Justification:
  293.      Filling.
  294. Keyboard Macros
  295.      Keyboard macros are a way of defining new Emacs commands from
  296.      sequences of existing ones, with no need to write a Lisp program. 
  297.      *Note Keyboard Macros::.
  298.      A key is a sequence of characters that, when input to Emacs,
  299.      specify or begin to specify a single action for Emacs to perform.
  300.       That is, the sequence is not more than a single unit.  If the
  301.      key is enough to specify one action, it is a complete key (q.v.);
  302.      if it is less than enough, it is a prefix key (q.v.).  *Note
  303.      Keys::.
  304. Keymap
  305.      The keymap is the data structure that records the bindings (q.v.)
  306.      of keys to the commands that they run.  For example, the keymap
  307.      binds the character `C-n' to the command function `next-line'. 
  308.      *Note Keymaps::.
  309. Kill Ring
  310.      The kill ring is where all text you have killed recently is saved. 
  311.      You can reinsert any of the killed text still in the ring; this is
  312.      called yanking (q.v.).  *Note Yanking::.
  313. Killing
  314.      Killing means erasing text and saving it on the kill ring so it
  315.      can be yanked (q.v.) later.  Some other systems call this
  316.      "cutting".  Most Emacs commands to erase text do killing, as
  317.      opposed to deletion (q.v.).  *Note Killing::.
  318. Killing Jobs
  319.      Killing a job (such as, an invocation of Emacs) means making it
  320.      cease to exist.  Any data within it, if not saved in a file, is
  321.      lost.  *Note Exiting::.
  322.      A list is, approximately, a text string beginning with an open
  323.      parenthesis and ending with the matching close parenthesis.  In C
  324.      mode and other non-Lisp modes, groupings surrounded by other
  325.      kinds of matched delimiters appropriate to the language, such as
  326.      braces, are also considered lists.  Emacs has special commands
  327.      for many operations on lists.  *Note Lists::.
  328. Local
  329.      Local means `in effect only in a particular context'; the relevant
  330.      kind of context is a particular function execution, a particular
  331.      buffer, or a particular major mode.  It is the opposite of
  332.      `global' (q.v.).  Specific uses of `local' in Emacs terminology
  333.      appear below.
  334. Local Abbrev
  335.      A local abbrev definition is effective only if a particular major
  336.      mode is selected.  In that major mode, it overrides any global
  337.      definition for the same abbrev.  *Note Abbrevs::.
  338. Local Keymap
  339.      A local keymap is used in a particular major mode; the key
  340.      bindings (q.v.) in the current local keymap override global
  341.      bindings of the same keys.  *Note Keymaps::.
  342. Local Variable
  343.      A local value of a variable (q.v.) applies to only one buffer. 
  344.      *Note Locals::.
  345.      `M-' in the name of a character is an abbreviation for META, one
  346.      of the modifier keys that can accompany any character.  *Note
  347.      Characters::.
  348.      `M-C-' in the name of a character is an abbreviation for
  349.      Control-Meta; it means the same thing as `C-M-'.  If your
  350.      terminal lacks a real META key, you type a Control-Meta character
  351.      by typing ESC and then typing the corresponding Control character. 
  352.      *Note C-M-: Characters.
  353.      `M-x' is the key which is used to call an Emacs command by name. 
  354.      This is how commands that are not bound to keys are called. 
  355.      *Note M-x::.
  356.      Mail means messages sent from one user to another through the
  357.      computer system, to be read at the recipient's convenience. 
  358.      Emacs has commands for composing and sending mail, and for
  359.      reading and editing the mail you have received.  *Note Sending
  360.      Mail::.  *Note Rmail::, for how to read mail.
  361. Mail File
  362.      A mail file is a file which is edited using Rmail and in which
  363.      Rmail stores mail.  *Note Rmail::.
  364. Major Mode
  365.      The major modes are a mutually exclusive set of options each of
  366.      which configures Emacs for editing a certain sort of text. 
  367.      Ideally, each programming language has its own major mode.  *Note
  368.      Major Modes::.
  369.      The mark points to a position in the text.  It specifies one end
  370.      of the region (q.v.), point being the other end.  Many commands
  371.      operate on all the text from point to the mark.  *Note Mark::.
  372. Mark Ring
  373.      The mark ring is used to hold several recent previous locations
  374.      of the mark, just in case you want to move back to them.  *Note
  375.      Mark Ring::.
  376. Message
  377.      See `mail'.
  378.      Meta is the name of a modifier bit which a command character may
  379.      have.  It is present in a character if the character is typed
  380.      with the META key held down.  Such characters are given names
  381.      that start with `Meta-'.  For example, `Meta-<' is typed by
  382.      holding down META and at the same time typing `<' (which itself
  383.      is done, on most terminals, by holding down SHIFT and typing `,'). 
  384.      *Note Meta: Characters.
  385. Meta Character
  386.      A Meta character is one whose character code includes the Meta
  387.      bit.
  388. Minibuffer
  389.      The minibuffer is the window that appears when necessary inside
  390.      the echo area (q.v.), used for reading arguments to commands. 
  391.      *Note Minibuffer::.
  392. Minor Mode
  393.      A minor mode is an optional feature of Emacs which can be
  394.      switched on or off independently of all other features.  Each
  395.      minor mode has a command to turn it on or off.  *Note Minor
  396.      Modes::.
  397. Mode Line
  398.      The mode line is the line at the bottom of each text window
  399.      (q.v.), which gives status information on the buffer displayed in
  400.      that window.  *Note Mode Line::.
  401. Modified Buffer
  402.      A buffer (q.v.) is modified if its text has been changed since the
  403.      last time the buffer was saved (or since when it was created, if
  404.      it has never been saved).  *Note Saving::.
  405. Moving Text
  406.      Moving text means erasing it from one place and inserting it in
  407.      another.  This is done by killing (q.v.) and then yanking (q.v.). 
  408.      *Note Killing::.
  409. Named Mark
  410.      A named mark is a register (q.v.) in its role of recording a
  411.      location in text so that you can move point to that location. 
  412.      *Note Registers::.
  413. Narrowing
  414.      Narrowing means creating a restriction (q.v.) that limits editing
  415.      in the current buffer to only a part of the text in the buffer. 
  416.      Text outside that part is inaccessible to the user until the
  417.      boundaries are widened again, but it is still there, and saving
  418.      the file saves it all.  *Note Narrowing::.
  419. Newline
  420.      LFD characters in the buffer terminate lines of text and are
  421.      called newlines.  *Note Newline: Characters.
  422. Numeric Argument
  423.      A numeric argument is a number, specified before a command, to
  424.      change the effect of the command.  Often the numeric argument
  425.      serves as a repeat count.  *Note Arguments::.
  426. Option
  427.      An option is a variable (q.v.) that exists so that you can
  428.      customize Emacs by giving it a new value.  *Note Variables::.
  429. Overwrite Mode
  430.      Overwrite mode is a minor mode.  When it is enabled, ordinary text
  431.      characters replace the existing text after point rather than
  432.      pushing it to the right.  *Note Minor Modes::.
  433.      A page is a unit of text, delimited by formfeed characters (ASCII
  434.      Control-L, code 014) coming at the beginning of a line.  Some
  435.      Emacs commands are provided for moving over and operating on
  436.      pages.  *Note Pages::.
  437. Paragraphs
  438.      Paragraphs are the medium-size unit of English text.  There are
  439.      special Emacs commands for moving over and operating on
  440.      paragraphs.  *Note Paragraphs::.
  441. Parsing
  442.      We say that Emacs parses words or expressions in the text being
  443.      edited.  Really, all it knows how to do is find the other end of a
  444.      word or expression.  *Note Syntax::.
  445. Point
  446.      Point is the place in the buffer at which insertion and deletion
  447.      occur.  Point is considered to be between two characters, not at
  448.      one character.  The terminal's cursor (q.v.) indicates the
  449.      location of point.  *Note Point: Basic.
  450. Prefix Key
  451.      A prefix key is a key (q.v.) whose sole function is to introduce a
  452.      set of multi-character keys.  `Control-x' is an example of prefix
  453.      key; thus, any two-character sequence starting with `C-x' is also
  454.      a legitimate key.  *Note Keys::.
  455. Primary Mail File
  456.      Your primary mail file is the file named `RMAIL' in your home
  457.      directory, where all mail that you receive is stored by Rmail
  458.      unless you make arrangements to do otherwise.  *Note Rmail::.
  459. Prompt
  460.      A prompt is text printed to ask the user for input.  Printing a
  461.      prompt is called prompting.  Emacs prompts always appear in the
  462.      echo area (q.v.).  One kind of prompting happens when the
  463.      minibuffer is used to read an argument (*note Minibuffer::.); the
  464.      echoing which happens when you pause in the middle of typing a
  465.      multicharacter key is also a kind of prompting (*note Echo
  466.      Area::.).
  467. Quitting
  468.      Quitting means cancelling a partially typed command or a running
  469.      command, using `C-g'.  *Note Quitting::.
  470. Quoting
  471.      Quoting means depriving a character of its usual special
  472.      significance.  In Emacs this is usually done with `Control-q'. 
  473.      What constitutes special significance depends on the context and
  474.      on convention.  For example, an "ordinary" character as an Emacs
  475.      command inserts itself; so in this context, a special character
  476.      is any character that does not normally insert itself (such as
  477.      DEL, for example), and quoting it makes it insert itself as if it
  478.      were not special.  Not all contexts allow quoting.  *Note
  479.      Quoting: Basic.
  480. Read-only Buffer
  481.      A read-only buffer is one whose text you are not allowed to
  482.      change.  Normally Emacs makes buffers read-only when they contain
  483.      text which has a special significance to Emacs; for example,
  484.      Dired buffers.  Visiting a file that is write protected also
  485.      makes a read-only buffer.  *Note Buffers::.
  486. Recursive Editing Level
  487.      A recursive editing level is a state in which part of the
  488.      execution of a command involves asking the user to edit some
  489.      text.  This text may or may not be the same as the text to which
  490.      the command was applied.  The mode line indicates recursive
  491.      editing levels with square brackets (`[' and `]').  *Note
  492.      Recursive Edit::.
  493. Redisplay
  494.      Redisplay is the process of correcting the image on the screen to
  495.      correspond to changes that have been made in the text being
  496.      edited.  *Note Redisplay: Screen.
  497. Regexp
  498.      See `regular expression'.
  499. Region
  500.      The region is the text between point (q.v.) and the mark (q.v.). 
  501.      Many commands operate on the text of the region.  *Note Region:
  502.      Mark.
  503. Registers
  504.      Registers are named slots in which text or buffer positions or
  505.      rectangles can be saved for later use.  *Note Registers::.
  506. Regular Expression
  507.      A regular expression is a pattern that can match various text
  508.      strings; for example, `l[0-9]+' matches `l' followed by one or
  509.      more digits.  *Note Regexps::.
  510. Replacement
  511.      See `global substitution'.
  512. Restriction
  513.      A buffer's restriction is the amount of text, at the beginning or
  514.      the end of the buffer, that is temporarily invisible and
  515.      inaccessible.  Giving a buffer a nonzero amount of restriction is
  516.      called narrowing (q.v.).  *Note Narrowing::.
  517.      RET is a character than in Emacs runs the command to insert a
  518.      newline into the text.  It is also used to terminate most
  519.      arguments read in the minibuffer (q.v.).  *Note Return:
  520.      Characters.
  521. Saving
  522.      Saving a buffer means copying its text into the file that was
  523.      visited (q.v.) in that buffer.  This is the way text in files
  524.      actually gets changed by your Emacs editing.  *Note Saving::.
  525. Scrolling
  526.      Scrolling means shifting the text in the Emacs window so as to
  527.      see a different part of the buffer.  *Note Scrolling: Display.
  528. Searching
  529.      Searching means moving point to the next occurrence of a specified
  530.      string.  *Note Search::.
  531. Selecting
  532.      Selecting a buffer means making it the current (q.v.) buffer. 
  533.      *Note Selecting: Buffers.
  534. Self-documentation
  535.      Self-documentation is the feature of Emacs which can tell you
  536.      what any command does, or give you a list of all commands related
  537.      to a topic you specify.  You ask for self-documentation with the
  538.      help character, `C-h'.  *Note Help::.
  539. Sentences
  540.      Emacs has commands for moving by or killing by sentences.  *Note
  541.      Sentences::.
  542.      A sexp (short for `s-expression') is the basic syntactic unit of
  543.      Lisp in its textual form: either a list, or Lisp atom.  Many
  544.      Emacs commands operate on sexps.  The term `sexp' is generalized
  545.      to languages other than Lisp, to mean a syntactically
  546.      recognizable expression.  *Note Sexps: Lists.
  547. Simultaneous Editing
  548.      Simultaneous editing means two users modifying the same file at
  549.      once.  Simultaneous editing if not detected can cause one user to
  550.      lose his work.  Emacs detects all cases of simultaneous editing
  551.      and warns the user to investigate them.  *Note Simultaneous
  552.      Editing: Interlocking.
  553. String
  554.      A string is a kind of Lisp data object which contains a sequence
  555.      of characters.  Many Emacs variables are intended to have strings
  556.      as values.  The Lisp syntax for a string consists of the
  557.      characters in the string with a `"' before and another `"' after.
  558.       A `"' that is part of the string must be written as `\"' and a
  559.      `\' that is part of the string must be written as `\\'.  All
  560.      other characters, including newline, can be included just by
  561.      writing them inside the string; however, escape sequences as in
  562.      C, such as `\n' for newline or `\241' using an octal character
  563.      code, are allowed as well.
  564. String Substitution
  565.      See `global substitution'.
  566. Syntax Table
  567.      The syntax table tells Emacs which characters are part of a word,
  568.      which characters balance each other like parentheses, etc.  *Note
  569.      Syntax::.
  570. Tag Table
  571.      A tag table is a file that serves as an index to the function
  572.      definitions in one or more other files.  *Note Tags::.
  573. Termscript File
  574.      A termscript file contains a record of all characters sent by
  575.      Emacs to the terminal.  It is used for tracking down bugs in
  576.      Emacs redisplay.  Emacs does not make a termscript file unless
  577.      you tell it to.  *Note Bugs::.
  578.      Two meanings (*note Text::.):
  579.         * Data consisting of a sequence of characters, as opposed to
  580.           binary numbers, images, graphics commands, executable
  581.           programs, and the like.  The contents of an Emacs buffer are
  582.           always text in this sense.
  583.         * Data consisting of written human language, as opposed to
  584.           programs, or following the stylistic conventions of human
  585.           language.
  586. Top Level
  587.      Top level is the normal state of Emacs, in which you are editing
  588.      the text of the file you have visited.  You are at top level
  589.      whenever you are not in a recursive editing level (q.v.) or the
  590.      minibuffer (q.v.), and not in the middle of a command.  You can
  591.      get back to top level by aborting (q.v.) and quitting (q.v.). 
  592.      *Note Quitting::.
  593. Transposition
  594.      Transposing two units of text means putting each one into the
  595.      place formerly occupied by the other.  There are Emacs commands
  596.      to transpose two adjacent characters, words, sexps (q.v.) or lines
  597.      (*note Transpose::.).
  598. Truncation
  599.      Truncating text lines in the display means leaving out any text
  600.      on a line that does not fit within the right margin of the window
  601.      displaying it.  See also `continuation line'.  *Note Truncation:
  602.      Basic.
  603. Undoing
  604.      Undoing means making your previous editing go in reverse, bringing
  605.      back the text that existed earlier in the editing session.  *Note
  606.      Undo::.
  607. Variable
  608.      A variable is an object in Lisp that can store an arbitrary value. 
  609.      Emacs uses some variables for internal purposes, and has others
  610.      (known as `options' (q.v.)) just so that you can set their values
  611.      to control the behavior of Emacs.  The variables used in Emacs
  612.      that you are likely to be interested in are listed in the
  613.      Variables Index in this manual.  *Note Variables::, for
  614.      information on variables.
  615. Visiting
  616.      Visiting a file means loading its contents into a buffer (q.v.)
  617.      where they can be edited.  *Note Visiting::.
  618. Whitespace
  619.      Whitespace is any run of consecutive formatting characters (space,
  620.      tab, newline, and backspace).
  621. Widening
  622.      Widening is removing any restriction (q.v.) on the current buffer;
  623.      it is the opposite of narrowing (q.v.).  *Note Narrowing::.
  624. Window
  625.      Emacs divides the screen into one or more windows, each of which
  626.      can display the contents of one buffer (q.v.) at any time.  *Note
  627.      Screen::, for basic information on how Emacs uses the screen. 
  628.      *Note Windows::, for commands to control the use of windows.
  629. Word Abbrev
  630.      Synonymous with `abbrev'.
  631. Word Search
  632.      Word search is searching for a sequence of words, considering the
  633.      punctuation between them as insignificant.  *Note Word Search::.
  634. Yanking
  635.      Yanking means reinserting text previously killed.  It can be used
  636.      to undo a mistaken kill, or for copying or moving text.  Some
  637.      other systems call this "pasting".  *Note Yanking::.
  638.